Conditions | 1 |
Total Lines | 18 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
25 | constructor() { |
||
26 | window.$ = window.jQuery = $; |
||
27 | |||
28 | /** |
||
29 | * Initiate component input |
||
30 | */ |
||
31 | this.input = new Input(); |
||
32 | |||
33 | this.select = new Select(); |
||
34 | |||
35 | this.validation = new Validation(); |
||
36 | |||
37 | this.wizard = new Wizard(); |
||
38 | |||
39 | this.upload = new Upload(); |
||
40 | |||
41 | this.editor = new Editor(); |
||
42 | } |
||
43 | } |
||
45 | export default new Form; |